home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / TXTBKGRD.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  225 b   |  14 lines

  1. /* p894.c --- bible */
  2. #include <conio.h>
  3. main()
  4. {
  5.     int i, numbgnd = 8;
  6.     textcolor(WHITE);
  7.     for(i = 0; i < numbgnd; i++)
  8.     {
  9.         textbackground(i);
  10.         gotoxy(1, i + 1);
  11.         cprintf("BAckground = %d", i);
  12.     }
  13. getch();
  14. }